home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_statd.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  93 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10235);
  10.  script_bugtraq_id(127, 450, 6831, 11785);
  11.  script_version ("$Revision: 1.21 $");
  12.  script_cve_id("CVE-1999-0018", "CVE-1999-0019", "CVE-1999-0493");
  13.  
  14.  name["english"] = "statd service";
  15.  name["francais"] = "Service statd";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The statd RPC service is running.  This service has a long history of 
  20. security holes, so you should really know what you are doing if you decide
  21. to let it run.
  22.  
  23. *** No security hole regarding this program have been tested, so
  24. *** this might be a false positive.
  25.  
  26. Solution : We suggest that you disable this service.
  27. Risk factor : High";
  28.  
  29.  
  30.  desc["francais"] = "
  31. Le service RPC statd tourne.
  32. Ce service a une longue histoire
  33. de problΦmes de sΘcuritΘ, donc 
  34. vous devriez vraiment savoir ce
  35. que vous faites si vous dΘcidez
  36. de le laisser tourner.
  37.  
  38. * AUCUN PROBLEME DE SECURITE 
  39.   N'A ETE TESTE, DONC CETTE
  40.   ALERTE EST PEUT ETRE 
  41.   FAUSE *
  42.  
  43. Il est recommandΘ que vous dΘsactiviez
  44. ce service.
  45.  
  46. Facteur de risque : ElevΘ";
  47.  
  48.  
  49.  script_description(english:desc["english"], francais:desc["francais"]);
  50.  
  51.  summary["english"] = "Checks the presence of a RPC service";
  52.  summary["francais"] = "VΘrifie la prΘsence d'un service RPC";
  53.  script_summary(english:summary["english"], francais:summary["francais"]);
  54.  
  55.  script_category(ACT_GATHER_INFO);
  56.  
  57.  
  58.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  59.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  60.  family["english"] = "RPC"; 
  61.  family["francais"] = "RPC";
  62.  script_family(english:family["english"], francais:family["francais"]);
  63.  if ( ! defined_func("bn_random") )
  64.   script_dependencie("rpc_portmap.nasl");
  65.  else
  66.   script_dependencie("rpc_portmap.nasl", "ssh_get_info.nasl");
  67.  script_require_keys("rpc/portmap");
  68.  exit(0);
  69. }
  70.  
  71. #
  72. # The script code starts here
  73. #
  74.  
  75. include("misc_func.inc");
  76.  
  77. # RHEL not affected
  78. if ( get_kb_item("Host/RedHat/release") ) exit(0);
  79.  
  80. RPC_PROG = 100024;
  81. tcp = 0;
  82. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  83. if(!port){
  84.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  85.     tcp = 1;
  86.     }
  87.  
  88. if(port)
  89. {
  90.  if(tcp)security_warning(port);
  91.  else security_warning(port, protocol:"udp");
  92. }
  93.